home *** CD-ROM | disk | FTP | other *** search
- // Written by: Robert B. Cooper
- // ELECTRON Software
- // P.O. Box 309
- // Mt. Storm, WV. 26739
- // CompuServe ID#: 73244,3472
- // America OnLine: ELECTRON
- //
- // Resource file for the Custom Cursor DLL Demonstration.
- // The resource script was written with the Application Studio that came
- // with Visual C++ however it should be compatible with any resource
- // editor.
- //
- // You have a royalty-free right to use, modify, reproduce and distribute the
- // Sample Files CUS_CUR.C, CUR_DLL.DEF, CUS_CUR.H, SAMPLE.RC, RESOURCE.H and
- // CUR_DEMO.MAK(and/or any modified version) in any way you find useful,
- // provided that you agree that ELECTRON SOFTWARE has no warranty obligations
- // or liability for any Sample Application Files which are modified.
-
-
- #include "resource.h"
- #include "windows.h"
-
-
- //////////////////////////
- // //
- // Dialog //
- // //
- //////////////////////////
-
- IDD_ABOUT DIALOG 73, 64, 185, 119
- STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
- CAPTION "About Custom Cursors DLL"
- FONT 8, "MS Sans Serif"
- BEGIN
- DEFPUSHBUTTON "OK", IDOK, 65,102,50,14
- CTEXT "Custom Cursors DLL Demo", IDC_STATIC, 48,11,87,8
- LTEXT "by:", IDC_STATIC, 86,23,11,8
- LTEXT "Robert B. Cooper", IDC_STATIC, 63,35,58,8
- LTEXT "P.O. Box 309", IDC_STATIC, 70,46,44,8
- LTEXT "Mt. Storm, WV. 26739", IDC_STATIC, 56,58,73,8
- LTEXT "CompuServe ID#: 73244,3472", IDC_STATIC, 43,73,99,8
- LTEXT "America OnLine: ELECTRON", IDC_STATIC, 43,82,95,8
- END
-
-
- //////////////////////////
- // //
- // Atom Icon //
- // //
- //////////////////////////
-
- ID_ATOM ICON "atom.ico"
-
-
-
- //////////////////////////
- // //
- // Menu //
- // //
- //////////////////////////
-
- SampleMenu MENU
- BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&Print", IDM_PRINT
- MENUITEM SEPARATOR
- MENUITEM "&Exit", IDM_EXIT
- END
-
- POPUP "&Edit"
- BEGIN
- MENUITEM "Cu&t", IDM_CUT
- MENUITEM "&Copy", IDM_COPY
- MENUITEM "&Paste", IDM_PASTE
- END
-
- POPUP "&Draw"
- BEGIN
- MENUITEM "&Line", IDM_LINE
- MENUITEM "&Circle", IDM_CIRCLE
- MENUITEM "&Freehand", IDM_FREEHAND
- MENUITEM "&Paint", IDM_PAINT
- END
-
- POPUP "&Help"
- BEGIN
- MENUITEM "&Context Help", IDM_CONTEXTHELP
- MENUITEM SEPARATOR
- MENUITEM "&About ...", IDM_ABOUT
- END
-
- END
-
-